import HistoryClient from './HistoryClient';

type Props = {
  params: Promise<{
    slug: string;
  }>;
};

export default async function HistoryPage(props: Props) {
  const params = await props.params;
  return <HistoryClient id={params.slug} />;
}
